Skorzystaj z wyszukiwarki lub indeksu alfabetycznego.
Przykłady: pci, /dev/null, functional unit, embedded system, pseudo-tty, nfs.
1 definition found
From The Free On-line Dictionary of Computing (05 January 2017) [foldoc]:
priority queue
A data structure with three operations: insert a
new item, return the highest priority item, and remove the
highest priority item. The obvious way to represent priority
queues is by maintaining a sorted list but this can make the
insert operation very slow. Greater efficiency can be
achieved by using heaps.
(1996-03-12)